stage.set_background("space")
sprite = codesters.Sprite("spaceship")
sprite.set_size(0.5)
sprite.go_to(-200, 0)
stage.set_gravity(10)
stage.disable_all_walls()
def space_bar():
sprite.jump(5)
# add other actions...
stage.event_key("space", space_bar)
def interval():
top_height = random.randint(50, 300)
# sprite = codesters.Sprite("image", x, y)
top_rock = codesters.Sprite("asteroid", 0, 0)
top_rock.set_height(top_height)
# add any other actions...
stage.event_interval(interval, 2)
t = codesters.Teacher()
try:
params = t.find_text('set_gravity_off')
tval1 = t.get_indent_at_line(params[0][0])
tval2 = params[0][1]
except:
params = "DNE"
tval1 = "DNE"
tval2 = "DNE"
try:
speed = t.find_function("set_y_speed")
tval3 = t.get_indent_at_line(speed[0][0])
tval4 = speed[0][1]
except:
speed = "DNE"
tval3 = "DNE"
tval4 = "DNE"
t1 = TestObjective()
t1.add_success('top_rock' in tval2 and tval1 == 4, "Great job!")
t1.add_failure(tval1 == "DNE" or tval2 == "DNE", "Did you turn off gravity for the asteroid?")
t1.add_failure(tval1 != 4, "Make sure the command is indented four spaces to be inside the interval event.")
t1.add_failure('top_rock' not in tval2 or 'sprite' in tval2, "Did you change the name in front of Set Gravity Off to top_rock?")
t2 = TestObjective()
t2.add_success(tval3 == 4 and tval4 == 0 , "Great job!")
t2.add_failure(tval3 == "DNE", "Did you add a Set Y Speed command?")
t2.add_failure(tval3 != 4, "Make sure your Set Y Speed command is indented four spaces inside the interval event!")
t2.add_failure('top_rock.set' not in tval4, "Did you change the name in front of your Set Y Speed command to top_rock?")
t2.add_failure('(5)' in tval4, "Did you change the number in your Set Y Speed command?")
# ds1 = codesters.Display(tval2)
tester = TestManager()
tester.add_test_list([t1])
tester.run_tests()
tester.display_first_feedback()
-
Run Code
-
Activity Submitted!
Submit Work
-
Next Activity
-
Stop Running Code
-
Show Chart
-
Show Console
-
Reset Code Editor
-
Codesters How To (opens in a new tab)